AuthenticationParameters

data class AuthenticationParameters(sessionId: String, sessionSecret: String, scheme: String)

The class used to provide input parameters required for an authentication request.

Parameters

sessionId

The unique ID of the authentication session. You will have received this in the response to the create session call to our Sessions API.

sessionSecret

The session secret. You will have received this in the response to the create session call to our Sessions API.

scheme

The name of the customer's card scheme: "Visa", "Mastercard", "Jcb", "Amex", or "Diners". Used to display the scheme's logo on the progress user interface.

Constructors

AuthenticationParameters
Link copied to clipboard
fun AuthenticationParameters(sessionId: String, sessionSecret: String, scheme: String)

Properties

scheme
Link copied to clipboard
val scheme: String
The name of the customer's card scheme: "Visa", "Mastercard", "Jcb", "Amex", or "Diners".
sessionId
Link copied to clipboard
val sessionId: String
The unique ID of the authentication session.
sessionSecret
Link copied to clipboard
val sessionSecret: String
The session secret.